From 78eeefb03049e689bb56424c2278ed7dd4e13a4c Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 5 Dec 2022 16:56:42 -0500 Subject: CMakeLists: Remove version specifier for lz4 Currently the exported version of lz4 provided by vcpkg is malformed and is "unknown". This makes querying for a specific version broken. Fixes configuring CMake with the use of vcpkg. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1200c14bd..e481984e4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -202,7 +202,7 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/bin) find_package(enet 1.3) find_package(fmt 9 REQUIRED) find_package(inih) -find_package(lz4 1.8 REQUIRED) +find_package(lz4 REQUIRED) find_package(nlohmann_json 3.8 REQUIRED) find_package(Opus 1.3) find_package(Vulkan 1.3.213) -- cgit v1.2.3